go.uber.org/atomic.Int64.v (field)
8 uses
go.uber.org/atomic (current package)
int64.go#L35: v int64
int64.go#L40: return &Int64{v: val}
int64.go#L45: return atomic.LoadInt64(&i.v)
int64.go#L50: return atomic.AddInt64(&i.v, delta)
int64.go#L55: return atomic.AddInt64(&i.v, -delta)
int64.go#L77: return atomic.CompareAndSwapInt64(&i.v, old, new)
int64.go#L82: atomic.StoreInt64(&i.v, val)
int64.go#L87: return atomic.SwapInt64(&i.v, val)
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |